Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
silkaj
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
clients
python
silkaj
Commits
055760ba
Commit
055760ba
authored
2 years ago
by
Moul
Browse files
Options
Downloads
Patches
Plain Diff
Update end_to_end tests
balance: fix string to use balance and not amount
parent
b5738b5e
No related branches found
No related tags found
1 merge request
!224
Separate tests into unit and integration directories (#441)
Pipeline
#17573
passed
2 years ago
Stage: checks
Stage: tests
Stage: package
Stage: coverage
Stage: deploy
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
silkaj/money/balance.py
+1
-1
1 addition, 1 deletion
silkaj/money/balance.py
tests/integration/test_end_to_end.py
+9
-9
9 additions, 9 deletions
tests/integration/test_end_to_end.py
with
10 additions
and
10 deletions
silkaj/money/balance.py
+
1
−
1
View file @
055760ba
...
...
@@ -103,7 +103,7 @@ def show_amount_from_pubkey(label: str, inputs_balance: List[int]) -> None:
currency_symbol
,
)
m_tools
.
display_amount
(
display
,
"
Total
amount
"
,
totalAmountInput
,
ud_value
,
currency_symbol
display
,
"
Total
balance
"
,
totalAmountInput
,
ud_value
,
currency_symbol
)
display
.
append
(
[
...
...
This diff is collapsed.
Click to expand it.
tests/integration/test_end_to_end.py
+
9
−
9
View file @
055760ba
...
...
@@ -19,13 +19,13 @@ silkaj = ["poetry", "run", "silkaj"]
def
test_info
():
"""
tests
'
silkaj info
'
returns a number of members
"""
"""
tests
'
silkaj
blockchain
info
'
returns a number of members
"""
output
=
check_output
(
silkaj
+
[
"
blockchain
"
,
"
info
"
])
assert
"
Number of members
"
in
output
.
decode
()
def
test_wot
():
def
test_wot
_status
():
"""
tests
'
silkaj wot status
'
returns a number of members
"""
output
=
check_output
(
silkaj
+
[
"
wot
"
,
"
status
"
,
"
Matograine
"
]).
decode
()
...
...
@@ -36,15 +36,15 @@ def test_wot():
assert
"
sent_expire
"
in
output
def
test_
id
():
"""
tests
'
silkaj lookup
'
certification on gtest
"""
def
test_
wot_lookup
():
"""
tests
'
silkaj
wot
lookup
'
certification on gtest
"""
output
=
check_output
(
silkaj
+
[
"
--gtest
"
,
"
wot
"
,
"
lookup
"
,
"
elois
"
]).
decode
()
assert
"
D7CYHJXjaH4j7zRdWngUbsURPnSnjsCYtvo6f8dvW3C
"
in
output
def
test_balance
():
"""
tests
'
silkaj
a
mo
unt
'
command on gtest
"""
def
test_
money_
balance
():
"""
tests
'
silkaj mo
ney balance
'
command on gtest
"""
output
=
check_output
(
silkaj
...
...
@@ -56,10 +56,10 @@ def test_balance():
]
).
decode
()
assert
(
"
│ Balance of pubkey │ 3dnbnYY9i2bHMQUGyFp5GVvJ2wBkVpus31cDJA5cfRpj
:
│
"
"
│ Balance of pubkey
│ 3dnbnYY9i2bHMQUGyFp5GVvJ2wBkVpus31cDJA5cfRpj │
"
in
output
)
assert
"
EyF
"
in
output
assert
"
│ Total
amount
(unit|relative) │
"
in
output
assert
"
:
EyF
"
in
output
assert
"
│ Total
balance
(unit|relative) │
"
in
output
assert
"
UD ĞTest
"
in
output
assert
"
Total relative to M/N
"
in
output
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment