Restore command when clicking on it

This commit is contained in:
Jorge Manrubia
2025-05-07 11:58:17 +02:00
parent c9813f2fb1
commit 181e35b5b2
7 changed files with 53 additions and 14 deletions
+11
View File
@@ -1 +1,12 @@
require "test_helper"
# The parser is tested through the tests of specific commands. See +Command::AssignTests+, etc.
class Command::ParserTest < ActionDispatch::IntegrationTest
include CommandTestHelper
test "the parsed command contains the raw line" do
result = parse_command "assign @kevin"
assert_equal "assign @kevin", result.line
end
end