Sha256: 306e7d592544d317f6a71be574bc12e5a803b6f2c5d3a6ff4edfd9f2619b683f
Contents?: true
Size: 437 Bytes
Versions: 2
Compression:
Stored size: 437 Bytes
Contents
require 'spec_helper' describe SystemTaskStatus do let(:system_task_status) { SystemTaskStatus.OPENED } subject { system_task_status } it { should respond_to(:name) } it { SystemTaskStatus.should respond_to(:OPENED) } it { SystemTaskStatus.should respond_to(:IN_PROGRESS) } it { SystemTaskStatus.should respond_to(:PAUSED) } it { SystemTaskStatus.should respond_to(:CLOSED) } 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_status_spec.rb |
guara-0.0.1.rc | spec/models/system_task_status_spec.rb |