forked from pool/perl-Test-Object
		
	OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Test-Object?expand=0&rev=2
		
			
				
	
	
		
			119 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			RPMSpec
		
	
	
	
	
	
			
		
		
	
	
			119 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			RPMSpec
		
	
	
	
	
	
| #
 | |
| # spec file for package perl-Test-Object (Version 0.07)
 | |
| #
 | |
| # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
 | |
| #
 | |
| # 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 http://bugs.opensuse.org/
 | |
| #
 | |
| 
 | |
| # norootforbuild
 | |
| 
 | |
| 
 | |
| Name:           perl-Test-Object
 | |
| %define cpan_name Test-Object
 | |
| Summary:        Thoroughly testing objects via registered handlers
 | |
| Version:        0.07
 | |
| Release:        1
 | |
| License:        GPL+ or Artistic
 | |
| Group:          Development/Libraries/Perl
 | |
| Url:            http://search.cpan.org/dist/Test-Object/
 | |
| #Source:         http://www.cpan.org/authors/id/A/AD/ADAMK/Test-Object-0.07.tar.gz
 | |
| Source:         %{cpan_name}-%{version}.tar.bz2
 | |
| BuildArch:      noarch
 | |
| BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 | |
| BuildRequires:  perl
 | |
| %if 0%{?suse_version} < 1120
 | |
| BuildRequires:  perl-macros
 | |
| %endif
 | |
| BuildRequires:  perl(Carp)
 | |
| BuildRequires:  perl(Exporter)
 | |
| BuildRequires:  perl(File::Spec) >= 0.80
 | |
| BuildRequires:  perl(overload)
 | |
| BuildRequires:  perl(Scalar::Util) >= 1.16
 | |
| BuildRequires:  perl(Test::More) >= 0.42
 | |
| #
 | |
| Requires:       perl = %{perl_version}
 | |
| Requires:       perl(Carp)
 | |
| Requires:       perl(Exporter)
 | |
| Requires:       perl(File::Spec) >= 0.80
 | |
| Requires:       perl(overload)
 | |
| Requires:       perl(Scalar::Util) >= 1.16
 | |
| Requires:       perl(Test::More) >= 0.42
 | |
| 
 | |
| %description
 | |
| In situations where you have deep trees of classes, there is a common
 | |
| situation in which you test a module 4 or 5 subclasses down, which should
 | |
| follow the correct behaviour of not just the subclass, but of all the
 | |
| parent classes.
 | |
| 
 | |
| This should be done to ensure that the implementation of a subclass has not
 | |
| somehow "broken" the object's behaviour in a more general sense.
 | |
| 
 | |
| 'Test::Object' is a testing package designed to allow you to easily test
 | |
| what you believe is a valid object against the expected behaviour of *all*
 | |
| of the classes in its inheritance tree in one single call.
 | |
| 
 | |
| To do this, you "register" tests (in the form of CODE or function
 | |
| references) with 'Test::Object', with each test associated with a
 | |
| particular class.
 | |
| 
 | |
| When you call 'object_ok' in your test script, 'Test::Object' will check
 | |
| the object against all registered tests. For each class that your object
 | |
| responds to '$object->isa($class)' for, the appropriate testing function
 | |
| will be called.
 | |
| 
 | |
| Doing it this way allows adapter objects and other things that respond to
 | |
| 'isa' differently that the default to still be tested against the classes
 | |
| that it is advertising itself as correctly.
 | |
| 
 | |
| This also means that more than one test might be "counted" for each call to
 | |
| 'object_ok'. You should account for this correctly in your expected test
 | |
| count.
 | |
| 
 | |
| Authors:
 | |
| --------
 | |
|      Adam Kennedy <cpan@ali.as>
 | |
| 
 | |
| %prep
 | |
| %setup -q -n %{cpan_name}-%{version}
 | |
| 
 | |
| %build
 | |
| %{__perl} Makefile.PL INSTALLDIRS=vendor
 | |
| %{__make} %{?_smp_mflags}
 | |
| 
 | |
| %check
 | |
| %{__make} test
 | |
| 
 | |
| %install
 | |
| %perl_make_install
 | |
| ### since 11.4 perl_process_packlist
 | |
| ### removes .packlist, perllocal.pod files
 | |
| %if 0%{?suse_version} > 1130
 | |
| %perl_process_packlist
 | |
| %else
 | |
| # do not perl_process_packlist
 | |
| # remove .packlist file
 | |
| %{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
 | |
| # remove perllocal.pod file
 | |
| %{__rm} -f $RPM_BUILD_ROOT%perl_archlib/perllocal.pod
 | |
| %endif
 | |
| %perl_gen_filelist
 | |
| 
 | |
| %clean
 | |
| %{__rm} -rf $RPM_BUILD_ROOT
 | |
| 
 | |
| %files -f %{name}.files
 | |
| %defattr(-,root,root,-)
 | |
| %doc Changes LICENSE README
 | |
| 
 | |
| %changelog
 |