10 lines
243 B
Ruby
10 lines
243 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Legislation::DraftVersion, type: :model do
|
|
let(:legislation_draft_version) { build(:legislation_draft_version) }
|
|
|
|
it "should be valid" do
|
|
expect(legislation_draft_version).to be_valid
|
|
end
|
|
end
|