legacy_rspec/objects/vector_spec.rb in qlang-0.0.27182123 vs legacy_rspec/objects/vector_spec.rb in qlang-0.0.27182124
- old
+ new
@@ -5,42 +5,42 @@
context 'into R' do
it do
expect(
Q.to_r.compile('(1 2 3)')
).to eq(
- "c(1, 2, 3)"
+ 'c(1, 2, 3)'
)
expect(
Q.to_r.compile('(1 2 3 4 5 6)')
).to eq(
- "c(1, 2, 3, 4, 5, 6)"
+ 'c(1, 2, 3, 4, 5, 6)'
)
expect(
Q.to_r.compile('(1 2 3 4 5 6)')
).to eq(
- "c(1, 2, 3, 4, 5, 6)"
+ 'c(1, 2, 3, 4, 5, 6)'
)
end
end
context 'into Ruby' do
it do
expect(
Q.to_ruby.compile('(1 2 3)')
).to eq(
- "Vector[1, 2, 3]"
+ 'Vector[1, 2, 3]'
)
end
end
context 'into Python' do
it do
expect(
Q.to_python.compile('(1 2 3)')
).to eq(
- "array([1, 2, 3])"
+ 'array([1, 2, 3])'
)
end
end
end
end