Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
Darwcss
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
Darwcss
Commits
8ec176b2
Kaydet (Commit)
8ec176b2
authored
Ara 30, 2018
tarafından
Batuhan Osman TASKAYA
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix the test
üst
cec23454
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
7 deletions
+11
-7
Jenkinsfile
Jenkinsfile
+2
-1
test_color.py
tests/test_color.py
+3
-3
test_misc.py
tests/test_misc.py
+6
-3
No files found.
Jenkinsfile
Dosyayı görüntüle @
8ec176b2
...
...
@@ -4,7 +4,7 @@ pipeline {
stage
(
'prepare'
)
{
steps
{
sh
'python -m venv .venv'
sh
""". .venv/bin/activate
sh
""". .venv/bin/activate
pip install pytest twine mypy flake8 mccabe flake8-junit-report
pip install -e ."""
}
...
...
@@ -62,6 +62,7 @@ pipeline {
}
post
{
always
{
sh
'cat test_*.xml'
junit
'test_*.xml'
}
}
...
...
tests/test_color.py
Dosyayı görüntüle @
8ec176b2
import
unittest
from
darwcss.darwcss
import
ColorValue
,
render
from
darwcss.darwcss
import
ColorValue
,
ColorTypes
,
render
class
TestColorValue
(
unittest
.
TestCase
):
def
test_output_rgb
(
self
):
red
=
ColorValue
(
255
,
0
,
0
)
blue
=
ColorValue
(
0
,
0
,
255
,
"rgb"
)
blue
=
ColorValue
(
0
,
0
,
255
,
ColorTypes
.
RGB
)
self
.
assertEqual
(
render
(
red
),
"rgb(255, 0, 0)"
)
self
.
assertEqual
(
render
(
blue
),
"rgb(0, 0, 255)"
)
def
test_output_hex
(
self
):
purple
=
ColorValue
(
"fa"
,
"ff"
,
"ca"
,
"hex"
)
purple
=
ColorValue
(
"fa"
,
"ff"
,
"ca"
,
ColorTypes
.
HEX
)
self
.
assertEqual
(
render
(
purple
),
"#faffca"
)
...
...
tests/test_misc.py
Dosyayı görüntüle @
8ec176b2
...
...
@@ -11,9 +11,12 @@ class TestMisc(unittest.TestCase):
border_style
=
Style
(
"border"
,
border_size
+
border_type
+
border_color
)
self
.
assertEqual
(
border_style
.
value
,
"5px solid rgb(255, 0, 0)"
)
def
test_numeric_plus_color
(
self
):
self
.
assertEqual
(
NumericValue
(
15
,
"
%
"
)
+
ColorValue
(
"ff"
,
"ff"
,
"ff"
,
"hex"
),
"15
% #
ffffff"
)
self
.
assertEqual
(
NumericValue
(
15
,
"
%
"
)
+
ColorValue
(
"ff"
,
"ff"
,
"ff"
,
ColorTypes
.
HEX
),
"15
% #
ffffff"
,
)
if
__name__
==
"__main__"
:
unittest
.
main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment