aboutsummaryrefslogtreecommitdiffstats
path: root/spec/views/timebands/new.html.erb_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/views/timebands/new.html.erb_spec.rb')
-rw-r--r--spec/views/timebands/new.html.erb_spec.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/spec/views/timebands/new.html.erb_spec.rb b/spec/views/timebands/new.html.erb_spec.rb
deleted file mode 100644
index f5e85f20c..000000000
--- a/spec/views/timebands/new.html.erb_spec.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-require 'spec_helper'
-
-describe "/timebands/new", :type => :view do
- assign_referential
- let!(:timeband) { assign(:timeband, build(:timeband)) }
-
- describe "form" do
-
- it "should render inputs" do
- render
- expect(rendered).to have_field('timeband[name]')
- expect(rendered).to have_field('timeband[start_time(4i)]')
- expect(rendered).to have_field('timeband[start_time(5i)]')
- expect(rendered).to have_selector('button[type=submit]')
- end
-
- end
-end