mirror of
https://github.com/Growstuff/growstuff.git
synced 2025-12-24 01:57:46 -05:00
20 lines
251 B
Ruby
20 lines
251 B
Ruby
require 'rails_helper'
|
|
|
|
describe ForumsController do
|
|
|
|
login_member(:admin_member)
|
|
|
|
def valid_attributes
|
|
{
|
|
"name" => "MyString",
|
|
"description" => "Something",
|
|
"owner_id" => 1
|
|
}
|
|
end
|
|
|
|
def valid_session
|
|
{}
|
|
end
|
|
|
|
end
|