dining_charges

This commit is contained in:
Nweni
2017-08-11 13:34:30 +06:30
parent 14384745ad
commit b0ad2049c5
26 changed files with 428 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
require 'rails_helper'
RSpec.describe "dining_charges/index", type: :view do
before(:each) do
assign(:dining_charges, [
DiningCharge.create!(),
DiningCharge.create!()
])
end
it "renders a list of dining_charges" do
render
end
end