Skip to content

Instantly share code, notes, and snippets.

@maxehmookau
Last active August 29, 2015 14:21
Show Gist options
  • Save maxehmookau/b8a97fda9169824bd23c to your computer and use it in GitHub Desktop.
Save maxehmookau/b8a97fda9169824bd23c to your computer and use it in GitHub Desktop.
class CustomerTest
test 'get a list of all customers who have spent over £100 this month' do
create_list(:customer, 10, :spent_over_100_pounds)
create_list(:customer, 10, :spent_less_than_100_pounds)
assert_equal 10, Customer.active.size
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment