1
0
Fork 0

Make the wording of the different integration tests more consistent

This commit is contained in:
Tom Willemse 2020-01-08 16:49:02 -08:00
parent 9a78612a43
commit dd2d254e25
4 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bats #!/usr/bin/env bats
@test "Loading an AHK file loads oni-autohotkey" { @test "Opening a .ahk file loads oni-autohotkey" {
run emacs -batch -l package -f package-initialize \ run emacs -batch -l package -f package-initialize \
-visit test.ahk \ -visit test.ahk \
-eval "(prin1 (featurep 'oni-autohotkey))" -eval "(prin1 (featurep 'oni-autohotkey))"

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bats #!/usr/bin/env bats
@test "Loading a bats file loads oni-bats" { @test "Opening a .bats file loads oni-bats" {
run emacs -batch -l package -f package-initialize \ run emacs -batch -l package -f package-initialize \
-visit test.bats \ -visit test.bats \
-eval "(prin1 (featurep 'oni-bats))" -eval "(prin1 (featurep 'oni-bats))"

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bats #!/usr/bin/env bats
@test "Loading a Dockerfile loads oni-docker" { @test "Opening a Dockerfile loads oni-docker" {
run emacs -batch -l package -f package-initialize \ run emacs -batch -l package -f package-initialize \
-visit Dockerfile \ -visit Dockerfile \
-eval "(prin1 (featurep 'oni-docker))" -eval "(prin1 (featurep 'oni-docker))"

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bats #!/usr/bin/env bats
@test "Opening a scheme file loads oni-scheme" { @test "Opening a .scm file loads oni-scheme" {
run emacs -batch -l package -f package-initialize \ run emacs -batch -l package -f package-initialize \
-visit test.scm \ -visit test.scm \
-eval "(prin1 (featurep 'oni-scheme))" -eval "(prin1 (featurep 'oni-scheme))"