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
This commit is contained in:
2021-12-02 22:31:36 +00:00
committed by Git OBS Bridge
commit e8465b1126
5 changed files with 99 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -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

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

3
0.0.4.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:211b81ce8c71deb00718a3111ee0f7fe4e99d4acfca4aa0126becdd74d84f1e8
size 3462

View File

@@ -0,0 +1,4 @@
-------------------------------------------------------------------
Thu Dec 2 21:09:15 UTC 2021 - Fabrice BAUZAC-STEHLY <noon@mykolab.com>
- Initial package from version 0.0.4.

View File

@@ -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