1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00
This commit is contained in:
Thorsten Böttger 2012-12-02 20:55:16 +13:00
parent 6160269635
commit bef8a274fb

View file

@ -1,6 +1,6 @@
require 'spec_helper'
describe 'AuthMachine on initialization' do
describe 'on initialization' do
let(:auth) {AuthMachine.new}
it 'should be in the pending state' do
@ -13,7 +13,7 @@ describe 'AuthMachine on initialization' do
end
end
describe 'AuthMachine when being unsuspended' do
describe 'when being unsuspended' do
let(:auth) {AuthMachine.new}
it 'should be able to be unsuspended' do