Welcome to mirror list, hosted at ThFree Co, Russian Federation.

book_test.rb « unit « test - github.com/git/git-scm.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2af510ca9d2d300da13913491200bb6089b2bd0 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

require "test_helper"

class BookTest < ActiveSupport::TestCase
  should have_many :chapters
  should have_many(:sections).through(:chapters)
end