mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 20:00:49 +08:00
15 lines
235 B
Ruby
15 lines
235 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe "memos/index", type: :view do
|
|
before(:each) do
|
|
assign(:memos, [
|
|
Memo.create!(),
|
|
Memo.create!()
|
|
])
|
|
end
|
|
|
|
it "renders a list of memos" do
|
|
render
|
|
end
|
|
end
|