Skip to content

Instantly share code, notes, and snippets.

@libbyschuknight
Last active August 29, 2015 14:27
Show Gist options
  • Save libbyschuknight/ada04fa0acd670f6e64e to your computer and use it in GitHub Desktop.
Save libbyschuknight/ada04fa0acd670f6e64e to your computer and use it in GitHub Desktop.
Example test for api
describe "GET /users" do
before do
5.times {FactoryGirl.create(:user)}
get "/api/v1/users/"
end
it "shoudl return all the users as json" do
expect(last_response.body).to eq(User.all.to_json)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment