Method: EasyqaApi::TestPlan.all
- Defined in:
- lib/easyqa_api/items/test_plan.rb
.all(project_token, user = @@default_user) ⇒ Array
List of all test plans in project
25 26 27 28 29 30 31 32 |
# File 'lib/easyqa_api/items/test_plan.rb', line 25 def self.all(project_token, user = @@default_user) send_request('test_plans', :get) do |req| req.params = { auth_token: user.auth_token, token: project_token } end end |