1
0
Fork 0
mirror of https://github.com/thoughtbot/shoulda-matchers.git synced 2022-11-09 12:01:38 -05:00
thoughtbot--shoulda-matchers/test/unit/dog_test.rb
Ryan McGeary 42d4de6e97 Deprecated load_all_fixtures [#65]
* Use `fixtures :all` instead
2008-09-02 16:49:13 -04:00

7 lines
186 B
Ruby

require File.dirname(__FILE__) + '/../test_helper'
class DogTest < Test::Unit::TestCase
should_belong_to :user
should_belong_to :address
should_have_and_belong_to_many :fleas
end