ensl.org/spec/features/articles/new_article_spec.rb
Luke Barratt 85d592f648 Initial article text code
Added model annotations
2014-03-26 11:09:39 +00:00

14 lines
254 B
Ruby

require 'spec_helper'
feature 'User creates new article' do
let(:user) { create(:user) }
let(:article) { attributes_for(:article) }
before do
visit new_article_path
end
describe 'with valid Title, Content: ' do
describe ''
end
end