From e8465b112604485c80373c24d6815ec065abf3cc03d87c744001e28f52f58212 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Thu, 2 Dec 2021 22:31:36 +0000 Subject: [PATCH] Accepting request 935297 from devel:languages:python This is the correct project. OBS-URL: https://build.opensuse.org/request/show/935297 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-mockito?expand=0&rev=1 --- .gitattributes | 23 ++++++++++++ .gitignore | 1 + 0.0.4.tar.gz | 3 ++ python-pytest-mockito.changes | 4 +++ python-pytest-mockito.spec | 68 +++++++++++++++++++++++++++++++++++ 5 files changed, 99 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 0.0.4.tar.gz create mode 100644 python-pytest-mockito.changes create mode 100644 python-pytest-mockito.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/0.0.4.tar.gz b/0.0.4.tar.gz new file mode 100644 index 0000000..43313ef --- /dev/null +++ b/0.0.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211b81ce8c71deb00718a3111ee0f7fe4e99d4acfca4aa0126becdd74d84f1e8 +size 3462 diff --git a/python-pytest-mockito.changes b/python-pytest-mockito.changes new file mode 100644 index 0000000..c98e6bc --- /dev/null +++ b/python-pytest-mockito.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Thu Dec 2 21:09:15 UTC 2021 - Fabrice BAUZAC-STEHLY + +- Initial package from version 0.0.4. diff --git a/python-pytest-mockito.spec b/python-pytest-mockito.spec new file mode 100644 index 0000000..cf45b0e --- /dev/null +++ b/python-pytest-mockito.spec @@ -0,0 +1,68 @@ +# +# spec file +# +# Copyright (c) 2021 Fabrice Bauzac-Stehly +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} + +# python-mockito is not available for Python 3.6 +%define skip_python36 1 + +Name: python-pytest-mockito +Version: 0.0.4 +Release: 0 +Summary: Convenience plugin on top of mockito +License: MIT +Group: Development/Languages/Python +URL: https://github.com/kaste/pytest-mockito +Source: https://github.com/kaste/pytest-mockito/archive/refs/tags/%{version}.tar.gz +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module pytest} +BuildRequires: %{python_module mockito} +BuildRequires: python-rpm-macros +BuildRequires: fdupes +Requires: ca-certificates +Requires: python +Requires: %{python_module pytest} +Requires: %{python_module mockito} +BuildArch: noarch +%python_subpackages + +%description +Integration of Mockito functionality into Pytest. + +For example: + def test_foo(when): + when(os.path).exists('/foo').thenReturn(False) + +%prep +%autosetup -n pytest-mockito-%{version} + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%pytest + +%files %python_files +%license LICENSE +%doc README.rst +%{python_sitelib}/pytest_mockito/ +%{python_sitelib}/pytest_mockito-* + +%changelog