Skip to content

Instantly share code, notes, and snippets.

@PeteMichaud
Created May 25, 2012 00:58
Show Gist options
  • Save PeteMichaud/2785184 to your computer and use it in GitHub Desktop.
Save PeteMichaud/2785184 to your computer and use it in GitHub Desktop.
it "should be able to have transcripts added to it" do
# A has_many Bs
a = A.new ({
name: 'Name',
})
a.save
a.should be_an_instance_of(A) #Passes
3.times do
b = B.new
b.data = "data"
b.a_id = a.id
b.save
end
a.bs.count.should eq 3
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment