mirror of
https://github.com/thoughtbot/shoulda-matchers.git
synced 2022-11-09 12:01:38 -05:00
7 lines
186 B
Ruby
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
|