84 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			RPMSpec
		
	
	
	
	
	
		
		
			
		
	
	
			84 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			RPMSpec
		
	
	
	
	
	
| 
								 | 
							
								#
							 | 
						||
| 
								 | 
							
								# spec file for package perl-Test-Snapshot
							 | 
						||
| 
								 | 
							
								#
							 | 
						||
| 
								 | 
							
								# Copyright (c) 2020 SUSE LLC
							 | 
						||
| 
								 | 
							
								#
							 | 
						||
| 
								 | 
							
								# 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/
							 | 
						||
| 
								 | 
							
								#
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								Name:           perl-Test-Snapshot
							 | 
						||
| 
								 | 
							
								Version:        0.06
							 | 
						||
| 
								 | 
							
								Release:        0
							 | 
						||
| 
								 | 
							
								%define cpan_name Test-Snapshot
							 | 
						||
| 
								 | 
							
								Summary:        Test against data stored in automatically-named file
							 | 
						||
| 
								 | 
							
								License:        Artistic-2.0
							 | 
						||
| 
								 | 
							
								Group:          Development/Libraries/Perl
							 | 
						||
| 
								 | 
							
								URL:            https://metacpan.org/release/%{cpan_name}
							 | 
						||
| 
								 | 
							
								Source0:        https://cpan.metacpan.org/authors/id/E/ET/ETJ/%{cpan_name}-%{version}.tar.gz
							 | 
						||
| 
								 | 
							
								BuildArch:      noarch
							 | 
						||
| 
								 | 
							
								BuildRoot:      %{_tmppath}/%{name}-%{version}-build
							 | 
						||
| 
								 | 
							
								BuildRequires:  perl
							 | 
						||
| 
								 | 
							
								BuildRequires:  perl-macros
							 | 
						||
| 
								 | 
							
								BuildRequires:  perl(App::Prove)
							 | 
						||
| 
								 | 
							
								BuildRequires:  perl(Capture::Tiny)
							 | 
						||
| 
								 | 
							
								BuildRequires:  perl(File::Path) >= 2.070000
							 | 
						||
| 
								 | 
							
								BuildRequires:  perl(Test2::API)
							 | 
						||
| 
								 | 
							
								BuildRequires:  perl(Test::More) >= 0.96
							 | 
						||
| 
								 | 
							
								BuildRequires:  perl(Text::Diff)
							 | 
						||
| 
								 | 
							
								Requires:       perl(File::Path) >= 2.070000
							 | 
						||
| 
								 | 
							
								Requires:       perl(Test2::API)
							 | 
						||
| 
								 | 
							
								Requires:       perl(Test::More) >= 0.96
							 | 
						||
| 
								 | 
							
								Requires:       perl(Text::Diff)
							 | 
						||
| 
								 | 
							
								%{perl_requires}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								%description
							 | 
						||
| 
								 | 
							
								Not connected with Test::Snapshots, which is based on a similar concept but
							 | 
						||
| 
								 | 
							
								for running executables.
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								Implements a function to automate the storing and updating of expected test
							 | 
						||
| 
								 | 
							
								outputs. This is based on the idea known in frontend development circles as
							 | 
						||
| 
								 | 
							
								"snapshot testing", hence the module name.
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								These snapshots will be stored in files whose names are automatically
							 | 
						||
| 
								 | 
							
								generated from:
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								* the test filename ('$0')
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								* any subtests' names surrounding and including this one
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								* the test description if any
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								If that file is not present, it will be treated as though it contains an
							 | 
						||
| 
								 | 
							
								'undef'.
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								%prep
							 | 
						||
| 
								 | 
							
								%setup -q -n %{cpan_name}-%{version}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								%build
							 | 
						||
| 
								 | 
							
								perl Makefile.PL INSTALLDIRS=vendor
							 | 
						||
| 
								 | 
							
								make %{?_smp_mflags}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								%check
							 | 
						||
| 
								 | 
							
								make test
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								%install
							 | 
						||
| 
								 | 
							
								%perl_make_install
							 | 
						||
| 
								 | 
							
								%perl_process_packlist
							 | 
						||
| 
								 | 
							
								%perl_gen_filelist
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								%files -f %{name}.files
							 | 
						||
| 
								 | 
							
								%defattr(-,root,root,755)
							 | 
						||
| 
								 | 
							
								%doc Changes README.md
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								%changelog
							 |