Sha256: 69963b02041d7b9a8748ab9201f153f781f405024d717e680e90b90c389af507

Contents?: true

Size: 405 Bytes

Versions: 2

Compression:

Stored size: 405 Bytes

Contents

require 'spec_helper'

describe SystemTaskResolution do

  let(:system_task_status) { SystemTaskResolution.RESOLVED }
  
  subject { system_task_status }
  
  it { should respond_to(:name) }

  it { SystemTaskResolution.should respond_to(:RESOLVED) }
  it { SystemTaskResolution.should respond_to(:CANCELED) }
  it { SystemTaskResolution.should respond_to(:BLOCKED) }
    
  it { should be_valid }
  
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
guara-0.0.3 spec/models/system_task_resolution_spec.rb
guara-0.0.1.rc spec/models/system_task_resolution_spec.rb