diff --git a/spec/views/submissions/show.html.haml_spec.rb b/spec/views/submissions/show.html.haml_spec.rb new file mode 100644 --- /dev/null +++ b/spec/views/submissions/show.html.haml_spec.rb @@ -0,0 +1,12 @@ +require 'spec_helper' + +describe "submissions/show" do + before(:each) do + @submission = assign(:submission, stub_model(Submission)) + end + + it "renders attributes in

" do + render + # Run the generator again with the --webrat flag if you want to use webrat matchers + end +end