blob: c3dd671cb6e4e9a11f81743b4d3f82dc61250656 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
describe 'with `GLOB_SUBST` option set' do
let(:after_sourcing) do
-> {
session.run_command('setopt GLOB_SUBST')
}
end
it 'error messages are not printed' do
session.send_string('[[')
wait_for { session.content }.to eq('[[')
end
end
|