We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0af1a65 commit 4f509d1Copy full SHA for 4f509d1
1 file changed
spec/Facades/lms_facade_spec.rb
@@ -2,19 +2,19 @@
2
3
describe LmsFacade do
4
let(:facade) { described_class.new }
5
- let(:mockCourse) { 16 }
6
- let(:mockStudent) { 22 }
7
- let(:mockAssignment) { 18 }
8
- let(:mockDate) { '2002-03-16:16:00:00Z' }
+ let(:mock_course) { 16 }
+ let(:mock_student) { 22 }
+ let(:mock_assignment) { 18 }
+ let(:mock_date) { '2002-03-16:16:00:00Z' }
9
10
describe 'provision_extension' do
11
it 'throws not implemented error' do
12
expect do
13
facade.provision_extension(
14
- mockCourse,
15
- mockStudent,
16
- mockAssignment,
17
- mockDate
+ mock_course,
+ mock_student,
+ mock_assignment,
+ mock_date
18
)
19
end.to raise_error(NotImplementedError)
20
end
0 commit comments