-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
вернул lib.additional + исправил тесты
- Loading branch information
Artur Ayukhanov
committed
Jul 3, 2024
1 parent
973a4b6
commit 8e3b26d
Showing
8 changed files
with
25 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
features/step_definitions/fixtures/package-with-dependencies/folder/oscript.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
lib.system=../oscript_modules | ||
lib.system=./oscript_modules |
5 changes: 2 additions & 3 deletions
5
features/step_definitions/fixtures/package-with-dependencies/folder/src.os
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
// заглушка | ||
#Использовать asserts | ||
#Использовать fs | ||
|
||
Утверждения.Проверить(Истина, "Не должны увидеть это сообщение"); | ||
Сообщить(ФС.ПолныйПуть(".")); |
9 changes: 4 additions & 5 deletions
9
features/step_definitions/fixtures/package-with-dependencies/packagedef
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
Описание.Имя("test") | ||
.Версия("0.3.1") | ||
.ВключитьФайл("packagedef") | ||
.Версия("1.0.0") | ||
.ВключитьФайл("folder") | ||
.ВключитьФайл("tools") | ||
.ВключитьФайл("without-cfg") | ||
.ИсполняемыйФайл("folder/src.os", "test") | ||
.ИсполняемыйФайл("tools/src.os", "testtool") | ||
.ЗависитОт("fs"); | ||
.ИсполняемыйФайл("without-cfg/src.os", "test-without-cfg") | ||
; |
2 changes: 0 additions & 2 deletions
2
features/step_definitions/fixtures/package-with-dependencies/tools/oscript.cfg
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
features/step_definitions/fixtures/package-with-dependencies/tools/src.os
This file was deleted.
Oops, something went wrong.
3 changes: 3 additions & 0 deletions
3
features/step_definitions/fixtures/package-with-dependencies/without-cfg/src.os
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#Использовать fs | ||
|
||
Сообщить(ФС.ПолныйПуть(".")); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters