Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions motion/adapters/array_model_adapter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ def do_insert(options = {})
end

def do_update(options = {})
true
end

def do_delete
Expand Down
6 changes: 6 additions & 0 deletions spec/model_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,12 @@ class TypeCast
Task.where(:name).eq('updated').should == 0
lambda{task.save}.should.change{Task.where(:name).eq('updated')}
end

it 'should not raise MotionModel::RecordNotSaved when save! is called' do
task = Task.create(:name => 'updateable')
task.name = 'updated'
lambda{task.save!}.should.not.raise(MotionModel::RecordNotSaved)
end
end

describe 'deleting' do
Expand Down