Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
diceware-debian
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
drebs
diceware-debian
Commits
b1572e2f
Commit
b1572e2f
authored
8 years ago
by
ulif
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #30 from LogosOfJ/master
Small fix for RealDiceRandomSource
parents
907a2c20
0d9c7a9a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
diceware/random_sources.py
+1
-1
1 addition, 1 deletion
diceware/random_sources.py
tests/test_random_sources.py
+6
-2
6 additions, 2 deletions
tests/test_random_sources.py
with
7 additions
and
3 deletions
diceware/random_sources.py
+
1
−
1
View file @
b1572e2f
...
...
@@ -131,7 +131,7 @@ class RealDiceRandomSource(object):
self
.
options
=
options
self
.
dice_sides
=
6
if
options
is
not
None
:
self
.
dice_sides
=
options
.
get
(
'
dice_sides
'
,
6
)
self
.
dice_sides
=
getattr
(
options
,
'
dice_sides
'
,
6
)
def
pre_check
(
self
,
num_rolls
,
sequence
):
"""
Checks performed before picking an item of a sequence.
...
...
This diff is collapsed.
Click to expand it.
tests/test_random_sources.py
+
6
−
2
View file @
b1572e2f
import
pkg_resources
import
pytest
import
argparse
from
diceware.random_sources
import
(
SystemRandomSource
,
RealDiceRandomSource
,
)
...
...
@@ -125,7 +127,7 @@ class TestRealDiceRandomSource(object):
def
test_options_are_stored
(
self
):
# options passed-in are stored with RealDiceRandomSource instances
options
=
dict
(
fake
=
1
)
options
=
"
fake_check
"
src
=
RealDiceRandomSource
(
options
)
assert
src
.
options
is
options
...
...
@@ -286,7 +288,9 @@ class TestRealDiceRandomSource(object):
def
test_dice_sides_respected
(
self
,
capsys
,
monkeypatch
):
# we use the number of dice sides given by options dict.
self
.
fake_input_values
([
"
1
"
,
"
2
"
],
monkeypatch
)
src
=
RealDiceRandomSource
(
dict
(
dice_sides
=
2
))
# a coin
# A Namespace, not a dict, is passed to the constructor.
options
=
argparse
.
Namespace
(
dice_sides
=
2
)
# a coin
src
=
RealDiceRandomSource
(
options
)
picked
=
src
.
choice
([
'
a
'
,
'
b
'
,
'
c
'
,
'
d
'
])
out
,
err
=
capsys
.
readouterr
()
# must throw a coin 2 times to pick one out of 4 items
...
...
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