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 e7ceb53 commit fa0eba0Copy full SHA for fa0eba0
test/Interpreter/Brainf__k.vimspec
@@ -7,9 +7,8 @@ Describe Interpreter.Brainf__k
7
8
Describe .run_vim_parse_execute()
9
It shows hello world
10
- redir => output
11
- silent call BF.run_vim_parse_execute("++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.")
12
- redir END
+ let script = '++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.'
+ let output = execute(printf('call BF.run_vim_parse_execute("%s")', script))
13
Assert Equals(output, "Hello World!\n")
14
End
15
0 commit comments