-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e3b4c34
commit 777d16f
Showing
6 changed files
with
67 additions
and
15 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""JustPy is an object-oriented, component based, high-level Python Web Framework that requires no front-end programming""" | ||
|
||
from .justpy import * | ||
__version__ = "0.2.6" | ||
__version__ = "0.2.7" |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
''' | ||
Created on 2022-08-26 | ||
@author: wf | ||
''' | ||
from tests.basetest import Basetest | ||
from justpy.quasarcomponents import QInput | ||
|
||
class TestQuasar(Basetest): | ||
''' | ||
test Quasar components | ||
https://quasar.dev/vue-components | ||
''' | ||
|
||
def testQInput(self): | ||
''' | ||
test QInput | ||
''' | ||
qInput=QInput() | ||
propList=qInput.prop_list | ||
debug=True | ||
if debug: | ||
print(propList) | ||
self.assertTrue("loading" in propList) |
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