AutoCommit Don Jul 30 00:03:02 CEST 2015

This commit is contained in:
Andreas Stephanides
2015-07-30 00:03:02 +02:00
parent 068c2a2e55
commit 97df081b33
66 changed files with 1542 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
require 'rails_helper'
RSpec.describe "Survey::Answers", :type => :request do
describe "GET /survey_answers" do
it "works! (now write some real specs)" do
get survey_answers_path
expect(response).to have_http_status(200)
end
end
end

View File

@@ -0,0 +1,10 @@
require 'rails_helper'
RSpec.describe "Survey::Choices", :type => :request do
describe "GET /survey_choices" do
it "works! (now write some real specs)" do
get survey_choices_path
expect(response).to have_http_status(200)
end
end
end

View File

@@ -0,0 +1,10 @@
require 'rails_helper'
RSpec.describe "Survey::Questions", :type => :request do
describe "GET /survey_questions" do
it "works! (now write some real specs)" do
get survey_questions_path
expect(response).to have_http_status(200)
end
end
end