-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.rb
More file actions
33 lines (30 loc) · 728 Bytes
/
sample.rb
File metadata and controls
33 lines (30 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
require 'rails_helper'
RSpec.describe MyClass do
describe '#my_method' do
subject { MyClass.new.my_method(arg) }
context 'when ...' do
context 'when ...' do
context 'when ...' do
context 'when ...' do
let(:arg) { create(:arg, :trait, attr: x) }
it 'should be ...' do
YourClass.new(
x: X.x(
y: Y.y(
z: Z.z(
a: A.a(
b: B.b(
c: C.c()
)
)
)
)
)
)
end
end
end
end
end
end
end