aasm/spec/unit/new_dsl_spec.rb

13 lines
350 B
Ruby
Raw Normal View History

2012-11-28 09:58:52 +00:00
require 'spec_helper'
describe "the new dsl" do
2012-11-28 09:58:52 +00:00
let(:process) {ProcessWithNewDsl.new}
it 'should not conflict with other event or state methods' do
lambda {ProcessWithNewDsl.state}.should raise_error(RuntimeError, "wrong state method")
lambda {ProcessWithNewDsl.event}.should raise_error(RuntimeError, "wrong event method")
end
end