diff options
| -rw-r--r-- | test/functional/v1/services_controller_test.rb | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/test/functional/v1/services_controller_test.rb b/test/functional/v1/services_controller_test.rb index 35a9de6..bcb7abc 100644 --- a/test/functional/v1/services_controller_test.rb +++ b/test/functional/v1/services_controller_test.rb @@ -6,7 +6,8 @@ class V1::ServicesControllerTest < ActionController::TestCase      get :show, format: :json      assert_json_response name: 'anonymous',        cert_prefix: 'LIMITED', -      description: 'anonymous account, with rate limited VPN' +      description: 'anonymous account, with rate limited VPN', +      services: ["eip"]    end    test "user can see their service info" do @@ -16,7 +17,8 @@ class V1::ServicesControllerTest < ActionController::TestCase        cert_prefix: 'LIMITED',        description: 'free account, with rate limited VPN',        cost: 0, -      quota: 100 +      quota: 100, +      services: ["eip", "email"]    end  end | 
