Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
What Format
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Anton Sarukhanov
What Format
Commits
1765b40a
Commit
1765b40a
authored
5 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
Add some tests.
parent
e6074874
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#114
passed with stage
Stage:
in 40 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+5
-1
5 additions, 1 deletion
.gitlab-ci.yml
tests/__init__.py
+0
-0
0 additions, 0 deletions
tests/__init__.py
tests/util/__init__.py
+0
-0
0 additions, 0 deletions
tests/util/__init__.py
tests/util/test_whatdateformat.py
+45
-0
45 additions, 0 deletions
tests/util/test_whatdateformat.py
with
50 additions
and
1 deletion
.gitlab-ci.yml
+
5
−
1
View file @
1765b40a
...
...
@@ -3,10 +3,14 @@ image: python:3-buster
before_script
:
-
pip install -r requirements-dev.txt
test
:
analyze
:
script
:
-
bandit whatformat/*.py whatformat/util/*.py
-
flake8 --config=.flake8 whatformat/*.py whatformat/util/*.py
-
mypy whatformat/*.py whatformat/util/*.py
-
pydocstyle whatformat/*.py whatformat/util/*.py
-
pylint whatformat/*.py whatformat/util/*.py
test
:
script
:
-
python3 -m unittest
This diff is collapsed.
Click to expand it.
tests/__init__.py
0 → 100644
+
0
−
0
View file @
1765b40a
This diff is collapsed.
Click to expand it.
tests/util/__init__.py
0 → 100644
+
0
−
0
View file @
1765b40a
This diff is collapsed.
Click to expand it.
tests/util/test_whatdateformat.py
0 → 100644
+
45
−
0
View file @
1765b40a
"""
Tests for util.whatdateformat.
"""
import
unittest
from
whatformat.util.whatdateformat
import
get_unique_format_strings
class
WhatDateFormatTests
(
unittest
.
TestCase
):
"""
Tests for util.whatdateformat.
"""
def
test_get_unique_format_strings
(
self
):
"""
Test for util.whatdateformat.get_unique_format_strings().
"""
cases
=
[
(
'
Jan 2
'
,
[
'
%b %-d
'
]),
(
'
Jan 15
'
,
[
'
%b %d
'
]),
(
'
1-2-1999
'
,
[
'
%-m-%-d-%Y
'
]),
(
'
1.2.1999
'
,
[
'
%-m.%-d.%Y
'
]),
(
'
1.2.1999.
'
,
[
'
%-m.%-d.%Y.
'
]),
(
'
1/2/1999
'
,
[
'
%-m/%-d/%Y
'
]),
(
'
1999.1.2
'
,
[
'
%Y.%-m.%-d
'
]),
(
'
1999-1-2
'
,
[
'
%Y-%-m-%-d
'
]),
(
'
1999. 2. 1
'
,
[
'
%Y. %-m. %-d
'
]),
(
'
1999.2.1
'
,
[
'
%Y.%-m.%-d
'
]),
(
'
1999/2/1
'
,
[
'
%Y/%-m/%-d
'
]),
(
'
28-11-1999
'
,
[
'
%d-%m-%Y
'
]),
(
'
28.11.1999
'
,
[
'
%d.%m.%Y
'
]),
(
'
28.11.1999.
'
,
[
'
%d.%m.%Y.
'
]),
(
'
28/11/1999
'
,
[
'
%d/%m/%Y
'
]),
(
'
11.28.1999
'
,
[
'
%m.%d.%Y
'
]),
(
'
11/28/1999
'
,
[
'
%m/%d/%Y
'
]),
(
'
11-28-1999
'
,
[
'
%m-%d-%Y
'
]),
(
'
1-28-1999
'
,
[
'
%-m-%d-%Y
'
]),
(
'
1.28.1999
'
,
[
'
%-m.%d.%Y
'
]),
(
'
1.28.1999.
'
,
[
'
%-m.%d.%Y.
'
]),
(
'
1/28/1999
'
,
[
'
%-m/%d/%Y
'
]),
(
'
11-28-1999
'
,
[
'
%m-%d-%Y
'
]),
(
'
11/28/1999
'
,
[
'
%m/%d/%Y
'
]),
(
'
1999-11-28
'
,
[
'
%Y-%m-%d
'
]),
(
'
1999.11.28.
'
,
[
'
%Y.%m.%d.
'
]),
(
'
1999/11/28
'
,
[
'
%Y/%m/%d
'
]),
(
'
ayy lmao
'
,
[]),
(
''
,
[]),
]
for
(
date
,
formats
)
in
cases
:
self
.
assertEqual
(
set
(
get_unique_format_strings
(
date
)),
set
(
formats
))
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