mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-28 05:21:19 +00:00
15 lines
254 B
Ruby
15 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
|