states_test.rb revision 7097237ffbd7227b30272b307b6e48c78b22ecb1
require 'test_helper'
context 'new oops request' do
setup do
end
should 'be pending' do
end
context 'aftert processed with error' do
setup do
@message = 'some error message'
end
end
should 'set state to failed' do
end
should 'state the error message' do
end
end
context 'aftert processed without error' do
setup do
end
should 'set state to done' do
end
should 'not have a errors message' do
end
end
end
end