spec/models/branch_spec.rb in phrase-2.0.0 vs spec/models/branch_spec.rb in phrase-2.1.0

- old
+ new

@@ -18,9 +18,21 @@ describe 'test an instance of Branch' do it 'should create an instance of Branch' do expect(@instance).to be_instance_of(Phrase::Branch) end end + describe 'test attribute "base_project_id"' do + it 'should work' do + # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers + end + end + + describe 'test attribute "branch_project_id"' do + it 'should work' do + # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers + end + end + describe 'test attribute "name"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end