mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-31 23:10:44 +00:00
85d592f648
Added model annotations
14 lines
254 B
Ruby
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
|