-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add bindings for check_condition function
- Loading branch information
1 parent
c20f883
commit 845a532
Showing
6 changed files
with
73 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { expect } from "chai"; | ||
import { Attribute, OCABox, create_nested_attr_type_from_js } from "oca.js"; | ||
|
||
describe("Attribute with condition is built", () => { | ||
try { | ||
const textTypeJs = create_nested_attr_type_from_js("Text"); | ||
|
||
const attribute = new Attribute("name") | ||
.setAttributeType(textTypeJs) | ||
.setCondition("${age} > 18"); | ||
|
||
it("check condition", () => { | ||
expect(attribute.checkCondition({ age: 20 })).to.be.true; | ||
expect(attribute.checkCondition({ age: 18 })).to.be.false; | ||
}); | ||
} catch (error) { | ||
console.error("Error checking attribute condition", error); | ||
} | ||
}); |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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