初探TDD开发ROR应用

测试依赖

测试依赖主要是has_many belongs_to等等

describe Course do
  it { should have_and_belong_to_many(:instructors) }
  it { should have_many(:course_learnings) }
  it { should have_many(:characters) }
  it { should belong_to(:creator) }