spec/models/contributor_agreement_spec.rb in curate-0.3.2 vs spec/models/contributor_agreement_spec.rb in curate-0.4.2
- old
+ new
@@ -1,16 +1,12 @@
require 'spec_helper'
describe ContributorAgreement do
subject { ContributorAgreement.new(curation_concern, user, params) }
- let(:curation_concern) { MockCurationConcern.new }
+ let(:curation_concern) { GenericWork.new }
let(:user) { User.new }
let(:params) { {} }
-
- it 'has legally binding text' do
- subject.legally_binding_text.should be_kind_of(String)
- end
it 'has acceptance value' do
subject.acceptance_value.should == 'accept'
end