aboutsummaryrefslogtreecommitdiffstats
path: root/spec/models/chouette/timeband_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/chouette/timeband_spec.rb')
-rw-r--r--spec/models/chouette/timeband_spec.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/spec/models/chouette/timeband_spec.rb b/spec/models/chouette/timeband_spec.rb
deleted file mode 100644
index fa7c8f06e..000000000
--- a/spec/models/chouette/timeband_spec.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-require 'spec_helper'
-
-describe Chouette::Timeband, :type => :model do
-
-
- describe '#create' do
- context 'when valid' do
- it { create(:timeband) }
- end
-
- context 'when not valid' do
- it 'fails validation with end_time before start_time' do
- timeband = build(:timeband_invalid)
- expect(timeband).to be_invalid
- end
- end
- end
-
-end